home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
EDUCATE
/
MERCVEN2.ARJ
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1992-01-31
|
1KB
|
60 lines
echo off
cls
if not %1. == . goto NewDir
type install.hlp
pause
if %1. == . goto default
:NewDir
echo About to create Directory %1
echo.
echo Press Ctrl-Break to stop or
pause
md %1
echo Copying Programme files
ren config.mov config.tmp
ren config.bak config.mov
copy *.* %1
ren config.mov config.bak
ren config.tmp config.mov
:DiskB
echo.
echo.
echo Please remove Programme disk and insert Data disk
pause
if not exist antonio.chr goto DiskB
echo Copying Data files
copy *.* %1
cls
type %1\winstall.hlp
echo Installation is Finished
echo To start the programme, change to the %1 directory
echo and type AUTOEXEC or MOV
goto End
:default
md c:\MOV
echo Copying Programme files....
copy *.* c:\MOV
:DiskBB
echo.
echo.
echo Please remove Programme Diskette and Insert Data diskette
pause
if not exist antonio.chr goto DiskBB
echo Copying Data Files
copy *.* c:\MOV
ren c:\MOV\config.MOV config.tmp
ren c:\mov\config.bak config.MOV
ren c:\mov\config.tmp config.bak
cls
type C:\MOV\Winstall.hlp
echo Installation is finished.
echo To run the programme, change to the MOV directory and
echo type MOV or AUTOEXEC
:End